Micron Document
🎖️GitЯра🎖️


Displaying Raw • Download

core/navigation/src/commonMain/kotlin/org/meshtastic/core/navigation/RumViewName.kt cea2c3a015c2c3227f13a3ac9bc4e13c35bbd4ee (cea2c3a0) Text, 1.37 KB

T8b949e/*
* Copyright (c) 2026 Meshtastic LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
Tff7b72package T7ee787org.meshtastic.core.navigation

Tff7b72import T7ee787androidx.navigation3.runtime.NavKey

T8b949e/**
* Derives the analytics view name for a navigation destination.
*
* The name is the route's fully-qualified class name (e.g. `org.meshtastic.core.navigation.NodesRoute.Nodes`), matching
* the convention historically recorded by Datadog RUM before the Navigation 3 migration, so new per-screen data lines
* up with existing dashboards. Falls back to the simple name (and finally `toString()`) on the rare platform where
* [kotlin.reflect.KClass.qualifiedName] is unavailable.
*/
Tff7b72fun Te6edf3NavKeyTb4b4b4.Td2a8ffrumViewNameTb4b4b4(Tb4b4b4)Tb4b4b4: Tffa657String Tff7b72= Tff7b72thisTff7b72::Te6edf3classTb4b4b4.Te6edf3qualifiedName Tff7b72?: Tff7b72thisTff7b72::Te6edf3classTb4b4b4.Te6edf3simpleName Tff7b72?: Te6edf3toStringTb4b4b4(Tb4b4b4)

Served by rngit 1.5.0 - Generated in 0.05s